home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Directorytools / DosManager / Install_ARP < prev    next >
Text File  |  1996-09-26  |  758b  |  26 lines

  1. .K ""
  2. echo "This script will install arp.library, after checking to see if"
  3. echo "you already have one.  If so, it will check the version numbers"
  4. echo "of the installed one, and the one in this directory, and give"
  5. echo "you the option of installing the one found here."
  6. echo ""
  7.  
  8. if not EXISTS libs:arp.library
  9.     echo "No existing library, installing libs:arp.library..."
  10.     copy libs/arp.library libs:arp.library
  11. else
  12.     echo "Examine the version numbers of each library."
  13.     echo ""
  14.     version libs:arp.library
  15.     version libs/arp.library
  16.     echo ""
  17.     ask "Do you wish to overwrite libs:arp.library?"
  18.     if WARN
  19.         echo "Updating libs:arp.library..."
  20.         copy libs/arp.library libs:arp.library
  21.     endif
  22. endif
  23.  
  24. echo "All Done.  Click close gadget to get rid of window."
  25. endcli
  26.